home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / clusters.dxr / 00014.ls < prev    next >
Encoding:
Text File  |  1996-03-21  |  1.0 KB  |  42 lines

  1. on exitFrame
  2.   if rollOver(10) then
  3.     go("naveg")
  4.   end if
  5.   if the mouseCast = 9 then
  6.     if the visible of sprite 2 = 0 then
  7.       set the visible of sprite 2 to 1
  8.     end if
  9.   else
  10.     set the visible of sprite 2 to 0
  11.   end if
  12.   if (the mouseCast = 4) or (the mouseCast = 10) then
  13.     if the visible of sprite 3 = 0 then
  14.       set the visible of sprite 3 to 1
  15.     end if
  16.   else
  17.     set the visible of sprite 3 to 0
  18.   end if
  19.   if (the mouseCast = 5) or (the mouseCast = 11) then
  20.     if the visible of sprite 4 = 0 then
  21.       set the visible of sprite 4 to 1
  22.     end if
  23.   else
  24.     set the visible of sprite 4 to 0
  25.   end if
  26.   if (the mouseCast = 6) or (the mouseCast = 12) then
  27.     if the visible of sprite 5 = 0 then
  28.       set the visible of sprite 5 to 1
  29.     end if
  30.   else
  31.     set the visible of sprite 5 to 0
  32.   end if
  33.   if (the mouseCast = 17) or (the mouseCast = 18) then
  34.     if the visible of sprite 11 = 0 then
  35.       set the visible of sprite 11 to 1
  36.     end if
  37.   else
  38.     set the visible of sprite 11 to 0
  39.   end if
  40.   go(the frame)
  41. end
  42.